steam_get_persona_name

语法:

steam_get_persona_name();


返回: String(字符串)


描述

You can use this function to return the user name of the user currently logged into the Steam client. This is the visible screen name and not the unique user id (this can be found using the function steam_get_user_steam_id).


例如:

if steam_initialised()
   {
   global.p_name = steam_get_persona_name();
   }

The above code will set a global variable to current users screen name if the Steam client API is correctly initialised.